home *** CD-ROM | disk | FTP | other *** search
- package netscape.debug;
-
- import java.lang.reflect.Method;
-
- public class JavaPC extends PC {
- private Method method;
- // $FF: renamed from: pc int
- private int field_0;
-
- JavaPC(Method var1, int var2) {
- this.method = var1;
- this.field_0 = var2;
- }
-
- public Method getMethod() {
- return this.method;
- }
-
- public native SourceLocation getSourceLocation();
-
- public boolean equals(Object var1) {
- if (this == var1) {
- return true;
- } else if (!(var1 instanceof JavaPC)) {
- return false;
- } else {
- JavaPC var2 = (JavaPC)var1;
- return var2.method == this.method && var2.field_0 == this.field_0;
- }
- }
-
- public int hashCode() {
- return this.method.hashCode() + this.field_0;
- }
-
- public String toString() {
- return "<PC " + this.method + "+" + this.field_0 + ">";
- }
- }
-